home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / hardware / cpu115 / cpu.pas < prev    next >
Pascal/Delphi Source File  |  1995-02-27  |  883b  |  28 lines

  1. {$A+,B-,D+,E-,F-,G-,I-,L+,N-,O-,R-,S-,V-,X+}
  2. {$M 16384,0,655360}
  3. { --------------------------------------------------------------------------- }
  4. { CPU.PAS  Sample program demonstrating usage of TMi0SDGL(tm) routines        }
  5. {                                          }
  6. { Copyright(c) 1994,95 by B-coolWare.  Written by Bobby Z.                  }
  7. { --------------------------------------------------------------------------- }
  8. { files needed to build project:
  9.  
  10.   HEADER.ASH
  11.   CPU_HL.ASM
  12.   CPUSPEED.ASM
  13.   SMM.ASM
  14.   CPUTYPE.PAS                                      }
  15.  
  16. uses CPUType;
  17.  
  18. const
  19.     SMM : array[Boolean] of String[39] = 
  20.               ('','  [System Management Mode available]');
  21.  
  22. begin
  23.  WriteLn('CPU Type Identifier/Pas  Version 1.15   Copyright(c) 1992-95 by B-coolWare.');
  24.  WriteLn;
  25.  WriteLn('  Processor: ',CPU_TypeStr, ', ',intCPUSpeed,'MHz',SMM[isSMMAble]);
  26.  WriteLn('Coprocessor: ',CoPro_TypeStr);
  27. end.
  28.